1 package jrre.classloader.classfile.pool_entries;
2
3 public class CPString extends CPInfo {
4
5 private int utf8Index;
6
7 public CPString(int utf8Index){ this.utf8Index = utf8Index; }
8
9 public int getUTF8Index(){ return utf8Index; }
10
11 public String toString(){ return "CPString: utf8Index = "+utf8Index; }
12 }
This page was automatically generated by Maven